home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-1998 - Modelworks Software
-
- // Insert script helper for:
-
- /**
- @Object: Application
- @Method: getClipboardText() returns the text in the clipboard.
- @Syntax: Application.getClipboardText()
- @Return: string
- @Summary: getClipboardText - returns the text in the clipboard
- */
-
- function DoCommand()
- {
- var editor = getActiveEditor();
- if (editor)
- {
- var selection = editor.getSelection();
- editor.replace("Application.getClipboardText()", selection);
- editor.setActive("Insert Application.getClipboardText");
- }
- }
-
- !!/Script
-
-